.hosting-card__fav--active{
    opacity: 1!important;
}
a[onclick="doFavorites('1', 'minus', 1, 'short'); return false;"]{
    background: #604f904d;
    border-radius: 8px;
}
.full-text p img{
    margin-bottom: 0!important;
}
/* ========================================
   HOSTING CARD STYLES
   ======================================== */

.hosting-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.hosting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(124, 104, 173, 0.2);
}

/* Header */
.hosting-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hosting-card__logo { 
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(124, 104, 173, 0.1);
}

.hosting-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hosting-card:hover .hosting-card__logo img {
    /* transform: scale(1.05); */
}

.hosting-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
    transition: all 0.2s ease;
}

.star.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.star.active::before {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Content */
.hosting-card__content {
    margin-bottom: 20px;
}

.hosting-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hosting-card__category {
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hosting-card__date {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
}

.hosting-card__title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hosting-card__title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hosting-card__title a:hover {
    color: #7c68ad;
}

.hosting-card__description {
    margin: 0 0 16px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Компактные табы */
.hosting-card__tabs {
    margin-bottom: 20px;
}

.tabs__nav {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
}

.tab__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.tab__btn:hover {
    background: rgba(124, 104, 173, 0.1);
    color: #7c68ad;
}

.tab__btn:hover .tab__icon {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

.tab__btn--active {
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
    box-shadow: 0 2px 4px rgba(124, 104, 173, 0.2);
}

.tab__btn--active .tab__icon {
    filter: grayscale(0) brightness(1.2);
    transform: scale(1.1);
}

.tab__icon {
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s ease;
    filter: grayscale(0.3);
}

.tab__text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabs__content {
    min-height: 80px;
    position: relative;
}

.tab__panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab__panel--active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Содержимое табов */
.tab__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.tab__feature:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.tab__feature-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.tab__feature-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.tab__tariffs {
    padding: 16px 16px 16px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: visible;
}

.tariffs__header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
}

.tariffs__title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 3;
}

.tariffs__subtitle {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 3;
}

.tariffs__list {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    max-height: 135px;
    overflow-y: auto;
    min-height: 100px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    padding-top: 8px;
}

.tariff__item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-height: 40px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

.tariff__item:hover {
    background: #f8f9fa;
    border-color: #7c68ad;
    /* transform: translateY(-1px); */
    box-shadow: 0 2px 4px rgba(124, 104, 173, 0.1);
}

.tariff__item--popular {
    border-color: #7c68ad;
    background: linear-gradient(135deg, rgba(124, 104, 173, 0.05), rgba(124, 104, 173, 0.02));
    position: relative;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    width: 100%;
    height: auto;
}

.tariff__item--popular::before {
    content: "Популярный";
    position: absolute;
    top: -10px;
    right: 8px;
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 3;
    width: auto;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tariff__name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    flex: 1;
    min-width: 80px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariff__price {
    display: flex !important;
    align-items: baseline;
    gap: 1px;
    margin: 0 8px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariff__currency {
    font-size: 12px;
    font-weight: 600;
    color: #7c68ad;
    display: inline !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariff__amount {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    display: inline !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariff__period {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    display: inline !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariff__features {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-align: right;
    min-width: 80px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.tariffs__footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.tariffs__btn {
    background: transparent;
    border: 1px solid #7c68ad;
    color: #7c68ad;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 3;
}

.tariffs__btn:hover {
    background: #7c68ad;
    color: white;
    transform: translateY(-1px);
}

.tab__pricing {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.tab__price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.tab__price-currency {
    font-size: 16px;
    font-weight: 600;
    color: #7c68ad;
}

.tab__price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.tab__price-period {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.tab__price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab__price-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.tab__price-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab__services {
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.services__header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.services__title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.services__subtitle {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.service__item:hover {
    background: #f8f9fa;
    border-color: #7c68ad;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(124, 104, 173, 0.1);
}

.service__name {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.service__status {
    font-size: 11px;
    font-weight: 600;
    color: #7c68ad;
    background: rgba(124, 104, 173, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Адаптивность для табов */
@media (max-width: 768px) {
    .tabs__nav {
        flex-direction: column;
        gap: 2px;
    }
    
    .tab__btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .tab__text {
        font-size: 12px;
    }
    
    .tabs__content {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .tab__btn {
        padding: 8px 10px;
        gap: 4px;
    }
    
    .tab__icon {
        font-size: 12px;
    }
    
    .tab__text {
        font-size: 10px;
    }
    
    .tab__feature {
        padding: 6px 10px;
    }
    
    .tab__feature-text {
        font-size: 12px;
    }
    
    .service__item {
        padding: 8px 10px;
    }
    
    .service__name {
        font-size: 12px;
    }
    
    .service__status {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .services__title {
        font-size: 14px;
    }
    
    .services__subtitle {
        font-size: 11px;
    }
    
    .tab__price-amount {
        font-size: 24px;
    }
    
    .tariff__item {
        padding: 4px 8px;
        flex-wrap: wrap;
        /* gap: 4px; */
    }
    
    .tariff__name {
        font-size: 12px;
        min-width: 60px;
    }
    
    .tariff__amount {
        font-size: 14px;
    }
    
    .tariff__features {
        font-size: 10px;
        min-width: 60px;
    }
    
    .tariffs__title {
        font-size: 14px;
    }
    
    .tariffs__subtitle {
        font-size: 11px;
    }
    
    .tariffs__list {
        max-height: 150px;
    }
}

.hosting-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.feature:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.feature__icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.feature__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature__text {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.feature__label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing */
.hosting-card__pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price__currency {
    font-size: 18px;
    font-weight: 600;
    color: #7c68ad;
}

.price__amount {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

.price__period {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.price__original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.price__discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.hosting-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hosting-card__buttons {
    display: flex;
    gap: 8px;
    flex: 1;
}

.hosting-card__btn {
    flex: 1;
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    border: none;
    color: white; 
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: 
        background 0.25s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), 
        filter 0.25s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(124, 104, 173, 0.08);
}

.hosting-card__btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1), height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.hosting-card__btn:hover {
    background: linear-gradient(135deg, #6b5a9a, #4a3a7a);
     
    box-shadow: 0 8px 24px 0 rgba(124, 104, 173, 0.22), 0 1.5px 6px 0 rgba(124, 104, 173, 0.10);
    filter: brightness(1.04) saturate(1.08);
}

.hosting-card__btn:hover::after {
    width: 220%;
    height: 220%;
    opacity: 1;
}

.hosting-card__btn:active {
    transform: translateY(0) scale(0.98);
    filter: brightness(0.98);
    box-shadow: 0 2px 8px rgba(124, 104, 173, 0.10);
}

/* Кнопка "Перейти к хостеру" */
.hosting-card__btn--host {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.hosting-card__btn--host:hover {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #059669;
    box-shadow: 0 8px 24px 0 rgba(16, 185, 129, 0.22), 0 1.5px 6px 0 rgba(16, 185, 129, 0.10);
    filter: brightness(1.06) saturate(1.10);
    color: white;
}

.hosting-card__btn--host:active {
    transform: translateY(0) scale(0.98);
    filter: brightness(0.98);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.10);
}

/* Кнопка "Подробнее" */
.hosting-card__btn--details {
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
}

.hosting-card__actions {
    display: flex;
    align-items: center;
}

.hosting-card__fav {
    min-width: 80px;
    height: 40px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #6b7280;
    font-size: 25px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.hosting-card__fav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.hosting-card__fav:hover::before {
    left: 100%;
}

.fav-icon {
    font-size: 16px;
    transition: all 0.2s ease;
}

.fav-text {
    font-size: 12px;
    white-space: nowrap;
}

/* Состояние: не в избранном */
.hosting-card__fav--add {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #e5e7eb;
}

.hosting-card__fav--add:hover {
    background: #fef3c7;
    color: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.hosting-card__fav--add:hover .fav-icon {
    transform: scale(1.2);
}

/* Состояние: в избранном */
.hosting-card__fav--active,
.hosting-card__fav--remove {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.hosting-card__fav--remove:hover {
    background: linear-gradient(135deg, #fde68a, #fcd34d);
    color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.hosting-card__fav--remove:hover .fav-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Состояние: нужно войти */
.hosting-card__fav--login {
    background: #e0e7ff;
    color: #6366f1;
    border-color: #c7d2fe;
}

.hosting-card__fav--login:hover {
    background: #c7d2fe;
    color: #4f46e5;
    border-color: #a5b4fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Анимация добавления в избранное */
@keyframes addToFavorites {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1); }
}

.hosting-card__fav--add:active {
    animation: addToFavorites 0.3s ease;
}

/* Анимация удаления из избранного */
@keyframes removeFromFavorites {
    0% { transform: scale(1); }
    50% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1); }
}

.hosting-card__fav--remove:active {
    animation: removeFromFavorites 0.3s ease;
}

/* Badge */
.hosting-card__badge {
    position: absolute;
    top: 16px;
    right: 19px;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge на логотипе */
.hosting-card__badge--logo {
    position: absolute;
    right: 40px; 
    z-index: 10;
    top: 40px;
}

.hosting-card__badge--logo .badge {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Рейтинг вверху */
.hosting-card__rating--top {
    position: absolute;
    top: 44px;
    right: 34px;
    z-index: 9;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 4px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
}

.hosting-card__rating--top .rating-value {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.badge--popular {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hosting-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .hosting-card__header {
        margin-bottom: 16px;
    }
    
    .hosting-card__logo {
        width: 100%;
        height: 100%;
    }
    
    .hosting-card__title {
        font-size: 18px;
    }
    
    .hosting-card__features {
        gap: 6px;
    }
    
    .feature {
        font-size: 12px;
    }
    
    .price__amount {
        font-size: 24px;
    }
    
    .hosting-card__btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hosting-card__fav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hosting-card {
        padding: 16px;
    }
    
    .hosting-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hosting-card__rating {
        align-items: flex-start;
    }
    
    .hosting-card__features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .feature {
        flex: 1;
        min-width: calc(50% - 4px);
    }
    
    .hosting-card__footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .hosting-card__buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .hosting-card__btn {
        width: 100%;
        margin-right: 0;
    }
}

/* Animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hosting-card {
    animation: cardFadeIn 0.6s ease-out;
}

/* Compact version */
.hosting-card--compact {
    padding: 16px;
    margin-bottom: 16px;
}

.hosting-card--compact .hosting-card__header {
    margin-bottom: 12px;
}

.hosting-card--compact .hosting-card__logo {
    width: 40px;
    height: 40px;
}

.hosting-card--compact .hosting-card__title {
    font-size: 16px;
    margin-bottom: 8px;
}

.hosting-card--compact .hosting-card__pricing {
    margin-bottom: 12px;
}

.hosting-card--compact .price__amount {
    font-size: 20px;
}

.hosting-card--compact .hosting-card__btn {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* Компактная версия избранного */
.hosting-card__fav--compact {
    min-width: 36px;
    width: 36px;
    height: 36px;
    padding: 0;
}

.hosting-card__fav--compact .fav-text {
    display: none;
}

.hosting-card__fav--compact .fav-icon {
    font-size: 18px;
}

/* ========================================
   HOSTING TARIFFS SECTION (FULL PAGE)
   ======================================== */

.hosting-tariffs {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.hosting-tariffs__header {
    text-align: center;
    margin-bottom: 32px;
}

.hosting-tariffs__title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.hosting-tariffs__subtitle {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.hosting-tariffs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Tariff Card */
.tariff-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tariff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #7c68ad;
}

.tariff-card--popular {
    border-color: #7c68ad;
    background: linear-gradient(135deg, rgba(124, 104, 173, 0.02), rgba(124, 104, 173, 0.05));
    transform: scale(1.05);
}

.tariff-card--popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.tariff-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 104, 173, 0.3);
}

.tariff-card__header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.tariff-card__name {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.tariff-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.tariff-card__currency {
    font-size: 18px;
    font-weight: 600;
    color: #7c68ad;
}

.tariff-card__amount {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.tariff-card__period {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.tariff-card__features {
    flex: 1;
    margin-bottom: 24px;
}

.tariff-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.tariff-feature:last-child {
    border-bottom: none;
}

.tariff-feature__icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.tariff-feature__text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.tariff-card__footer {
    margin-top: auto;
}

.tariff-card__btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 14px;
    border: 2px solid transparent;
}

.tariff-card__btn--primary {
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
}

.tariff-card__btn--primary:hover {
    background: linear-gradient(135deg, #6b5a9a, #4a3a7a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 104, 173, 0.3);
    color: white;
}

.tariff-card__btn--secondary {
    background: transparent;
    color: #7c68ad;
    border-color: #7c68ad;
}

.tariff-card__btn--secondary:hover {
    background: #7c68ad;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 104, 173, 0.2);
}

.hosting-tariffs__footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.hosting-tariffs__note {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

/* Компактная версия */
.hosting-tariffs--compact {
    margin: 32px 0;
    padding: 24px;
}

.hosting-tariffs--compact .hosting-tariffs__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tariff-card--compact {
    padding: 16px;
    min-height: auto;
}

.tariff-card--compact .tariff-card__header {
    margin-bottom: 16px;
    padding-top: 4px;
}

.tariff-card--compact .tariff-card__name {
    font-size: 16px;
    margin-bottom: 8px;
}

.tariff-card--compact .tariff-card__amount {
    font-size: 24px;
}

.tariff-card--compact .tariff-card__currency {
    font-size: 14px;
}

.tariff-card--compact .tariff-card__period {
    font-size: 12px;
}

.tariff-card--compact .tariff-card__features {
    margin-bottom: 16px;
}

.tariff-card--compact .tariff-feature {
    padding: 4px 0;
    gap: 8px;
}

.tariff-card--compact .tariff-feature__icon {
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.tariff-card--compact .tariff-feature__text {
    font-size: 12px;
    line-height: 1.3;
}

.tariff-card--compact .tariff-card__btn {
    padding: 8px 12px;
    font-size: 12px;
}

.tariff-card--compact .tariff-card__badge {
    font-size: 10px;
    padding: 4px 12px;
    top: -8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hosting-tariffs {
        margin: 24px 0;
        padding: 20px;
    }
    
    .hosting-tariffs__title {
        font-size: 24px;
    }
    
    .hosting-tariffs__subtitle {
        font-size: 14px;
    }
    
    .hosting-tariffs__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hosting-tariffs--compact .hosting-tariffs__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .tariff-card {
        padding: 20px;
    }
    
    .tariff-card--compact {
        padding: 12px;
    }
    
    .tariff-card--popular {
        transform: none;
    }
    
    .tariff-card--popular:hover {
        transform: translateY(-4px);
    }
    
    .tariff-card__amount {
        font-size: 28px;
    }
    
    .tariff-card--compact .tariff-card__amount {
        font-size: 20px;
    }
    
    .tariff-feature__text {
        font-size: 13px;
    }
    
    .tariff-card--compact .tariff-feature__text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hosting-tariffs {
        padding: 16px;
    }
    
    .hosting-tariffs__title {
        font-size: 20px;
    }
    
    .tariff-card {
        padding: 16px;
    }
    
    .tariff-card__name {
        font-size: 18px;
    }
    
    .tariff-card__amount {
        font-size: 24px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hosting-card {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .hosting-card__title a {
        color: #f9fafb;
    }
    
    .hosting-card__description {
        color: #d1d5db;
    }
    
    .feature {
        color: #e5e7eb;
    }
    
    .price__amount {
        color: #f9fafb;
    }
    
    .hosting-card__fav {
        background: #374151;
        color: #9ca3af;
    }
    
    .hosting-tariffs {
        background: linear-gradient(135deg, #1f2937, #374151);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .hosting-tariffs__title {
        color: #f9fafb;
    }
    
    .hosting-tariffs__subtitle {
        color: #d1d5db;
    }
    
    .tariff-card {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .tariff-card__name {
        color: #f9fafb;
    }
    
    .tariff-card__amount {
        color: #f9fafb;
    }
    
    .tariff-feature__text {
        color: #e5e7eb;
    }
    
    .hosting-tariffs__note {
        color: #9ca3af;
    }
}

/* ========================================
   HOSTING FAQ SECTION
   ======================================== */

.hosting-faq {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.hosting-faq__header {
    text-align: center;
    margin-bottom: 32px;
}

.hosting-faq__title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.hosting-faq__subtitle {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.hosting-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #7c68ad;
    box-shadow: 0 4px 12px rgba(124, 104, 173, 0.1);
}

.faq-item__question {
    width: 100%;
    padding: 40px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s ease;
}

.faq-item__question:hover {
    background: #f8f9fa;
}

.faq-item__text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    flex: 1;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #7c68ad, #5b4a8a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer[aria-hidden="true"] {
    max-height: 0;
}

.faq-item__answer[aria-hidden="false"] {
    max-height: 200px;
}

.faq-item__content {
    padding: 20px 24px 20px 24px;
}

.faq-item__content p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Активное состояние FAQ */
.faq-item--active .faq-item__question {
    background: linear-gradient(135deg, rgba(124, 104, 173, 0.05), rgba(124, 104, 173, 0.02));
}

.faq-item--active .faq-item__icon {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: rotate(45deg);
}

.faq-item--active .faq-item__answer {
    max-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .hosting-faq {
        margin: 24px 0;
        padding: 20px;
    }
    
    .hosting-faq__title {
        font-size: 24px;
    }
    
    .hosting-faq__subtitle {
        font-size: 14px;
    }
    
    .faq-item__question {
        padding: 16px 20px;
    }
    
    .faq-item__text {
        font-size: 15px;
    }
    
    .faq-item__content {
        padding: 0 20px 16px 20px;
    }
    
    .faq-item__content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hosting-faq {
        padding: 16px;
    }
    
    .hosting-faq__title {
        font-size: 20px;
    }
    
    .faq-item__question {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .faq-item__text {
        font-size: 14px;
    }
    
    .faq-item__icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .faq-item__content {
        padding: 0 16px 12px 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hosting-faq {
        background: linear-gradient(135deg, #1f2937, #374151);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .hosting-faq__title {
        color: #f9fafb;
    }
    
    .hosting-faq__subtitle {
        color: #d1d5db;
    }
    
    .faq-item {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .faq-item__question:hover {
        background: #374151;
    }
    
    .faq-item__text {
        color: #f9fafb;
    }
    
    .faq-item__content p {
        color: #d1d5db;
    }
    
    .faq-item--active .faq-item__question {
        background: linear-gradient(135deg, rgba(124, 104, 173, 0.1), rgba(124, 104, 173, 0.05));
    }
}
