/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #5EEAD4 100%);
    background-image: url('../images/russia-map-hero-v5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 100px;
    overflow: hidden;
    box-shadow: inset 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.35) 0%, rgba(20, 184, 166, 0.35) 50%, rgba(94, 234, 212, 0.35) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-16);
}

.hero-left {
    flex: 1;
    color: var(--neutral-white);
    text-align: center;
}

.hero-left h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    color: var(--neutral-white);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease;
}

.hero-left .subtitle {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: var(--spacing-10);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
    justify-content: center;
}

.hero-actions .btn {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: 1.0625rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--neutral-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(12px);
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.hero-actions .btn i {
    margin-left: var(--spacing-2);
    transition: transform var(--transition-base);
}

.hero-actions .btn:hover i {
    transform: translateX(3px);
}

/* ==================== SEARCH SECTION ==================== */
.search-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 20%, #f0f9ff 50%, #ede9fe 80%, #fae8ff 100%);
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.search-container-full {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-10);
}

.section-header h2 {
    font-size: 3.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-4);
    font-family: var(--font-display);
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    margin-top: var(--spacing-6);
}

/* Переключатель типа поиска */
.search-type-selector {
    display: flex;
    justify-content: center;
    gap: var(--spacing-10);
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-4);
}

.search-type-checkbox {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
}

.search-type-checkbox input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-type-checkbox input[type="radio"]:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.search-type-checkbox input[type="radio"]:checked {
    border-color: var(--primary-teal);
    background: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.search-type-checkbox input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.search-type-checkbox .checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: 1.25rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    user-select: none;
}

.search-type-checkbox .checkbox-label i {
    font-size: 1.5rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.search-type-checkbox input[type="radio"]:checked ~ .checkbox-label {
    color: var(--primary-teal);
    font-weight: 700;
}

.search-type-checkbox input[type="radio"]:checked ~ .checkbox-label i {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
}

.search-type-checkbox:hover .checkbox-label {
    color: var(--primary-teal);
}

.search-type-checkbox:hover .checkbox-label i {
    transform: scale(1.1);
}

.search-bar-large {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--spacing-6);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(20, 184, 166, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(20, 184, 166, 0.2);
    position: relative;
    overflow: hidden;
}

.search-bar-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(20, 184, 166, 0.05), transparent);
    transition: all 0.6s ease;
    transform: translateX(-100%);
}

.search-bar-large:hover::before {
    transform: translateX(100%);
}

.search-bar-large:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(20, 184, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.search-bar-large:focus-within {
    box-shadow: 0 35px 100px rgba(20, 184, 166, 0.25), 0 0 0 4px rgba(20, 184, 166, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.search-icon {
    font-size: var(--font-size-2xl);
    padding: 0 var(--spacing-4);
    color: var(--neutral-gray);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: var(--font-size-lg);
    font-family: var(--font-body);
    padding: var(--spacing-3) 0;
}

.search-btn {
    padding: var(--spacing-4) var(--spacing-10);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    white-space: nowrap;
}

.search-btn i {
    font-size: 1rem;
}

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

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.search-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.4);
}

.search-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-6);
}

.filter-chip {
    padding: var(--spacing-3) var(--spacing-6);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-gray-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.filter-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
    transition: width 0.4s ease;
    z-index: -1;
}

.filter-chip:hover::before {
    width: 100%;
}

.filter-chip:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

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

.quick-searches strong {
    color: var(--neutral-gray);
    margin-right: var(--spacing-3);
}

.quick-search-tag {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    margin: var(--spacing-1);
    background: var(--neutral-white);
    color: var(--primary-teal);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.quick-search-tag:hover {
    background: var(--primary-teal);
    color: var(--neutral-white);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--spacing-20) 0;
    position: relative;
}

.how-it-works-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.stats-section {
    background: linear-gradient(135deg, #CCFBF1 0%, #DBEAFE 50%, #E0E7FF 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 100%);
    text-align: center;
    position: relative;
}

/* ==================== GRIDS ==================== */
.how-it-works-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-6);
    margin-top: var(--spacing-12);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-5);
    margin-top: var(--spacing-8);
}

@media (max-width: 1400px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

/* ==================== STEP & TRUST CARDS ==================== */
.step-card,
.trust-item {
    text-align: center;
    padding: var(--spacing-10);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: visible;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(20, 184, 166, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(20, 184, 166, 0.3);
}

.step-number {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(59, 130, 246, 0.15));
    color: var(--primary-teal);
    font-size: 1.25rem;
    font-weight: var(--font-weight-black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-blue));
    color: white;
    border-color: white;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-6);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    color: var(--neutral-white);
    font-size: 2.5rem;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.4), inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.6), inset 0 -2px 15px rgba(0, 0, 0, 0.3);
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-teal);
    opacity: 0.4;
    z-index: 10;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(8px);
    }
}

.step-card:last-child .step-arrow {
    display: none;
}

.step-card:hover .step-arrow {
    opacity: 1;
    color: var(--accent-blue);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-4);
    color: var(--neutral-dark);
    font-weight: 700;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.step-card:hover h3 {
    color: var(--primary-teal);
}

.step-card p {
    color: var(--neutral-gray);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

.trust-item {
    background: var(--neutral-white);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-blue));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-teal);
}

.trust-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-6);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 100%);
    color: var(--neutral-white);
    font-size: 2.25rem;
    font-weight: var(--font-weight-black);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.35);
    transition: all var(--transition-base);
    position: relative;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-4);
    color: var(--neutral-dark);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
}

.trust-item p {
    color: var(--neutral-gray);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* ==================== STATS ==================== */
.stats-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
    position: relative;
    padding: var(--spacing-20) 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-header h2 {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    letter-spacing: -0.5px;
}

.stats-section .section-header h2::after {
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.stats-section .section-header p {
    color: var(--neutral-gray);
    text-shadow: none;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-3xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(20, 184, 166, 0.15);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(168, 85, 247, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateX(-200%);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover::after {
    transform: rotate(45deg) translateX(200%);
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 70px rgba(20, 184, 166, 0.3), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(20, 184, 166, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-3);
    font-family: var(--font-mono);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.2));
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: -2px;
}

.stat-item:hover .stat-number {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.4));
}

.stat-label {
    font-size: 1.125rem;
    color: var(--neutral-dark);
    font-weight: var(--font-weight-bold);
    position: relative;
    z-index: 1;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary-teal);
}

/* ==================== COMPANY CARDS ==================== */
.company-card {
    background: var(--neutral-white);
    border: 2px solid var(--neutral-gray-lightest);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-5);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-teal);
}

.company-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-6);
    background: linear-gradient(135deg, var(--neutral-offwhite) 0%, var(--neutral-gray-lightest) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-weight: var(--font-weight-black);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.company-logo-img {
    width: 100px;
    height: 100px;
    margin: 15px auto var(--spacing-4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    overflow: hidden;
    background: white;
}

.company-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.company-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    font-size: 48px;
    color: #14b8a6;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #64748B;
    margin-bottom: var(--spacing-3);
    text-align: center;
}

.company-details div {
    font-weight: 500;
}

.company-address {
    font-size: 13px;
    color: #475569;
    text-align: center;
    margin-bottom: var(--spacing-4);
    line-height: 1.5;
}

.company-card:hover .company-logo,
.company-card:hover .company-logo-img {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.logo-teal { color: var(--primary-teal); }
.logo-blue { color: var(--accent-blue); }
.logo-purple { color: var(--accent-purple); }
.logo-orange { color: var(--accent-orange); }
.logo-green { color: var(--status-success); }
.logo-red { color: var(--status-error); }

.verified-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--status-success);
    color: var(--neutral-white);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 2px;
}

.unverified-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FCD34D;
    color: #78350F;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 2px;
}

.company-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2);
    text-align: center;
    color: var(--neutral-dark);
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.company-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    justify-content: center;
    margin-bottom: var(--spacing-4);
}

.category-tag {
    padding: var(--spacing-1) var(--spacing-3);
    background: linear-gradient(135deg, var(--primary-teal-lightest), #BAE6FD);
    color: var(--primary-teal-dark);
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-teal);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.request-item:hover .category-tag {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-blue));
    color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.company-location {
    color: var(--neutral-gray);
    font-size: 13px;
    margin-bottom: var(--spacing-3);
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
    width: 100%;
    overflow: visible;
}

.company-card .btn {
    width: 100%;
    padding: 6px 12px;
    font-size: 11px;
    margin-top: auto;
}

/* ==================== REQUESTS LIST ==================== */
.requests-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
}

.request-item {
    background: var(--neutral-white);
    border: 2px solid var(--neutral-gray-lightest);
    border-radius: var(--radius-xl);
    padding: var(--spacing-5) var(--spacing-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-6);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.request-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--primary-teal), var(--accent-blue));
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.request-item:hover::before {
    transform: scaleY(1);
}

.request-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-teal);
}

.request-left {
    flex: 1;
}

.card-badge {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-3);
    background: linear-gradient(135deg, var(--status-success), #16A34A);
    color: var(--neutral-white);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
    text-transform: uppercase;
    margin-bottom: var(--spacing-2);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.25);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(34, 197, 94, 0.5); }
}

.request-left h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--neutral-dark);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    transition: color var(--transition-base);
    line-height: 1.4;
}

.request-item:hover .request-left h3 {
    color: var(--primary-teal);
}

.meta-text {
    font-size: 0.9rem;
    color: var(--neutral-gray);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}

.request-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-5);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.request-right .btn-small {
    padding: var(--spacing-2) var(--spacing-5);
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.request-right .btn-small:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.5);
}

.price {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    color: var(--primary-teal);
    font-family: var(--font-heading);
}

/* ==================== NEWS CARDS ==================== */
/* Секция новостей с красивым фоном */
.section.news-section {
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 50%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.section.news-section .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .section.news-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section.news-section .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.section.news-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section.news-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-card {
    background: var(--neutral-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15);
    border-color: #14b8a6;
}

.news-image {
    width: 100%;
    height: 200px;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: #14b8a6;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    font-size: 14px;
    color: #14b8a6;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.news-preview {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #14b8a6;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
    align-self: flex-start;
}

.news-read-more:hover {
    background: #0d9488;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    transform: translateX(4px);
    color: #ffffff !important;
}

.news-read-more i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.news-read-more:hover i {
    transform: translateX(4px);
}

.news-image-placeholder {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    position: relative;
}

.news-image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-12) var(--spacing-4);
    color: var(--neutral-gray);
}

.news-empty i {
    font-size: 4rem;
    color: var(--neutral-gray-light);
    margin-bottom: var(--spacing-4);
    display: block;
}

.news-empty p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin: 0;
}

/* ==================== PRICING ==================== */
.pricing-card {
    text-align: center;
    padding: var(--spacing-10);
    background: var(--neutral-white);
    border: 2px solid var(--neutral-gray-lighter);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-teal);
}

.pricing-card h3 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-4);
    color: var(--neutral-dark);
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-2);
    font-family: var(--font-mono);
    letter-spacing: -2px;
}

.price-note {
    font-size: var(--font-size-sm);
    color: var(--neutral-gray);
    margin-bottom: var(--spacing-6);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-6) 0;
    text-align: left;
}

.pricing-card li {
    padding: var(--spacing-2) 0;
    color: var(--neutral-gray);
    font-size: var(--font-size-sm);
}

.pricing-card li::before {
    content: '✓ ';
    color: var(--status-success);
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-2);
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-12);
    font-size: var(--font-size-lg);
    color: var(--neutral-gray);
    font-weight: var(--font-weight-medium);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-24) 0;
}

.cta-section .container {
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-16) var(--spacing-12);
    border-radius: var(--radius-3xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--neutral-white);
    margin-bottom: var(--spacing-6);
    font-weight: 800;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    line-height: 1.2;
    font-family: var(--font-display);
    letter-spacing: -2px;
}

.cta-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: var(--spacing-12);
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-5);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-actions .btn {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: 1.0625rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    color: var(--neutral-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-actions .btn:hover::before {
    left: 100%;
}

.cta-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-actions .btn i {
    margin-left: var(--spacing-2);
    transition: transform 0.3s ease;
}

.cta-actions .btn:hover i {
    transform: translateX(3px);
}

/* ==================== VIEW ALL LINK ==================== */
.view-all-link {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-teal);
    transition: color var(--transition-fast);
}

.view-all-link:hover {
    color: var(--primary-teal-dark);
}

.cards-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-8);
}

/* ==================== BONUS BANNER (GREEN/EMERALD THEME) ==================== */
.bonus-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 48px;
    box-shadow: 
        0 25px 60px rgba(16, 185, 129, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes shimmerPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05) rotate(180deg);
    }
}

.bonus-banner::before {
    content: '🎁';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 80px;
    opacity: 0.1;
    pointer-events: none;
    animation: shimmerPulse 5s ease-in-out infinite;
}

.bonus-banner::after {
    content: '💎';
    position: absolute;
    bottom: 20px;
    left: 40px;
    font-size: 60px;
    opacity: 0.1;
    pointer-events: none;
    animation: shimmerPulse 6s ease-in-out infinite reverse;
}

.bonus-item {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bonus-item:hover {
    transform: translateY(-4px) scale(1.02);
}

.bonus-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    transition: all 0.4s ease;
}

.bonus-item:hover .bonus-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.3) inset;
}

.bonus-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: iconBorderRotate 3s linear infinite;
    opacity: 0;
}

.bonus-item:hover .bonus-icon::before {
    opacity: 1;
}

@keyframes iconBorderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bonus-icon i {
    font-size: 36px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.bonus-item:hover .bonus-icon i {
    transform: scale(1.1);
}

.bonus-content {
    text-align: left;
    flex: 1;
}

.bonus-title {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.bonus-value {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.4);
    letter-spacing: -0.5px;
    line-height: 1;
    transition: transform 0.4s ease;
}

.bonus-item:hover .bonus-value {
    transform: scale(1.05);
}

.bonus-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 280px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bonus-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7),
        transparent
    );
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .bonus-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 36px 30px;
    }
    
    .bonus-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    }
    
    .bonus-item {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .bonus-banner {
        padding: 30px 20px;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-content {
        text-align: center;
    }
    
    .bonus-description {
        max-width: 100%;
    }
    
    .bonus-icon {
        width: 70px;
        height: 70px;
    }
    
    .bonus-icon i {
        font-size: 32px;
    }
    
    .bonus-value {
        font-size: 28px;
    }
}

/* ==================== POINTS USAGE INFO (ORANGE/AMBER THEME) ==================== */
.points-usage-info {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin-top: 48px;
    border: 3px solid #fdba74;
    box-shadow: 
        0 20px 50px rgba(251, 146, 60, 0.2),
        0 0 0 1px rgba(251, 146, 60, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.points-usage-info::before {
    content: '💰';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 70px;
    opacity: 0.15;
    pointer-events: none;
    animation: usageFloat 5s ease-in-out infinite;
}

.points-usage-info::after {
    content: '⚡';
    position: absolute;
    bottom: 30px;
    left: 50px;
    font-size: 50px;
    opacity: 0.15;
    pointer-events: none;
    animation: usageFloat 6s ease-in-out infinite reverse;
}

@keyframes usageFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    50% { 
        transform: translate(10px, -10px) rotate(10deg);
        opacity: 0.25;
    }
}

.usage-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.usage-header i {
    font-size: 28px;
    color: #f97316;
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.4));
    animation: iconBounce 2.5s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-6px) rotate(-5deg);
    }
}

.usage-header span {
    font-size: 24px;
    font-weight: 900;
    color: #9a3412;
    text-shadow: 0 2px 8px rgba(154, 52, 18, 0.2);
    letter-spacing: -0.5px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.usage-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 
        0 10px 30px rgba(234, 88, 12, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid #fed7aa;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.usage-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usage-card:hover {
    border-color: #f97316;
    box-shadow: 
        0 20px 60px rgba(249, 115, 22, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px) scale(1.01);
}

.usage-card:hover::before {
    transform: scaleX(1);
}

.usage-card:hover::after {
    opacity: 1;
}

.usage-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 8px 24px rgba(249, 115, 22, 0.4),
        0 0 40px rgba(249, 115, 22, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.4s ease;
}

.usage-card:hover .usage-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(249, 115, 22, 0.5),
        0 0 50px rgba(249, 115, 22, 0.3);
}

.usage-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    animation: usageIconRotate 3s linear infinite;
}

.usage-card:hover .usage-icon::after {
    opacity: 1;
}

@keyframes usageIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.usage-icon i {
    font-size: 32px;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.usage-card:hover .usage-icon i {
    transform: scale(1.15);
}

.usage-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.usage-title {
    font-size: 18px;
    font-weight: 800;
    color: #7c2d12;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.usage-description {
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
    margin-bottom: 16px;
}

.usage-cost {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cost-value {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    transition: transform 0.4s ease;
}

.usage-card:hover .cost-value {
    transform: scale(1.08);
}

.cost-label {
    font-size: 16px;
    font-weight: 700;
    color: #9a3412;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .points-usage-info {
        padding: 30px 20px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .usage-card {
        padding: 24px;
    }
    
    .usage-icon {
        width: 50px;
        height: 50px;
    }
    
    .usage-icon i {
        font-size: 24px;
    }
    
    .cost-value {
        font-size: 28px;
    }
}

/* ==================== TARIFFS GRID (TURQUOISE THEME) ==================== */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.tariff-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 
        0 10px 30px rgba(20, 184, 166, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid #99f6e4;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tariff-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tariff-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 
        0 25px 60px rgba(20, 184, 166, 0.3),
        0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: #14b8a6;
}

.tariff-card:hover::before {
    transform: scaleX(1);
}

.tariff-card:hover::after {
    opacity: 1;
}

.tariff-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    animation: badgePulseDiscount 2s ease-in-out infinite;
}

.no-discount-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

@keyframes badgePulseDiscount {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    }
}

.tariff-name {
    font-size: 22px;
    font-weight: 900;
    color: #115e59;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: -0.3px;
}

.tariff-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid #5eead4;
    box-shadow: 
        0 4px 12px rgba(20, 184, 166, 0.15) inset,
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.tariff-points::before {
    content: '💎';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
    animation: pointsGlow 3s ease-in-out infinite;
}

@keyframes pointsGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: rotate(0deg) scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: rotate(10deg) scale(1.1);
    }
}

.points-number {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    letter-spacing: -1.5px;
    transition: transform 0.4s ease;
}

.tariff-card:hover .points-number {
    transform: scale(1.08);
}

.points-label {
    font-size: 13px;
    color: #0f766e;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.tariff-price-old {
    text-align: center;
    color: #94a3b8;
    font-size: 16px;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 500;
}

.tariff-price-main {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.tariff-description {
    flex: 1;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

a.btn-tariff {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px !important;
    font-size: 14px !important;
    font-weight: 800;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none;
    box-shadow: 
        0 8px 20px rgba(20, 184, 166, 0.3),
        0 0 40px rgba(13, 148, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

a.btn-tariff::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

a.btn-tariff i {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

a.btn-tariff:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 
        0 12px 30px rgba(20, 184, 166, 0.5),
        0 0 50px rgba(13, 148, 136, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

a.btn-tariff:hover::before {
    opacity: 1;
}

a.btn-tariff:hover i {
    color: #ffffff !important;
}

a.btn-tariff:active {
    transform: translateY(0) scale(0.98) !important;
}

a.btn-tariff:visited {
    color: #ffffff !important;
}

a.btn-tariff:focus {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-card {
        padding: 24px 20px;
    }
    
    .tariff-name {
        font-size: 20px;
    }
    
    .points-number {
        font-size: 28px;
    }
    
    .tariff-price-main {
        font-size: 26px;
    }
}
