/* ===== LANDING PAGE STYLES ===== */
/* Специфичные стили для лендинга */

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-badge .badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary-alt)) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 2rem 0;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-btn {
    transition: var(--transition-smooth);
    border-width: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-alt) 100%);
    border: none;
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

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

.hero-btn:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 
        0 12px 30px rgba(102, 126, 234, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, var(--secondary-alt) 0%, var(--primary) 100%);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.hero-features {
    margin-top: 2rem;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

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

/* ===== HERO FUNCTIONS GRID ===== */
.hero-functions-grid {
    margin-top: 2rem;
}

.function-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    height: 100%;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.function-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.function-card:hover::before {
    width: 120%;
    height: 120%;
}

.function-card:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.06), rgba(139, 92, 246, 0.03));
    transform: translate3d(0, -6px, 0);
    border-color: rgba(102, 126, 234, 0.35);
    box-shadow: 
        0 12px 28px rgba(102, 126, 234, 0.18),
        0 0 0 1px rgba(102, 126, 234, 0.08);
}

.function-card .function-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--secondary-alt) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    font-size: 1rem;
    color: white;
    box-shadow: 
        0 6px 18px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.function-card:hover .function-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 22px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.function-card .function-icon.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.function-card .function-icon.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.function-card .function-icon.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.function-card .function-text {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.section-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.section-badge .badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translate3d(0, -10px, 0);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 25px 45px rgba(102, 126, 234, 0.12),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.04), rgba(139, 92, 246, 0.02));
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--secondary-alt) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 12px 35px rgba(102, 126, 234, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.feature-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
        linear-gradient(45deg, transparent 40%, rgba(102, 126, 234, 0.05) 50%, transparent 60%);
    pointer-events: none;
}

.cta-content-left {
    position: relative;
    z-index: 2;
}

.badge-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    word-break: break-word;
    hyphens: auto;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.cta-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translate3d(8px, 0, 0);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.4;
}

/* ===== CTA CARD ===== */
.cta-content-right {
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-card:hover::before {
    opacity: 1;
}

.price-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.starter-package-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
}

.package-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.package-item:last-child {
    margin-bottom: 0;
}

.package-item i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-alt) 100%);
    border: none;
    border-radius: 16px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.btn-cta-primary:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--secondary-alt) 0%, var(--primary) 100%);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    color: var(--text-primary);
}

.cta-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item-mini:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translate3d(0, -2px, 0);
}

.feature-icon-mini {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.feature-item-mini span {
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 500;
    line-height: 1.3;
}

.cta-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    font-size: 0.8rem;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.85rem;
    white-space: nowrap;
}

.trust-item i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ В CTA ===== */
.cta-additional-info {
    margin-top: 2rem;
}

.info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.info-block:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.15);
    transform: translate3d(0, -2px, 0);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-text {
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.user-types {
    margin-top: 1rem;
}

.user-type {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #c0c0c0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-type:last-child {
    margin-bottom: 0;
}

.user-type i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .cta-subtitle {
        text-align: center;
    }
    
    .cta-badge {
        text-align: center;
    }
    
    .cta-content-left {
        text-align: center;
    }
    
    .cta-card {
        margin-top: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 0.75rem;
        justify-content: center;
    }
    
    .cta-additional-info {
        text-align: center;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 24px;
        min-height: auto;
        padding-bottom: 1.5rem;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 1.5rem 0;
    }
    
    .hero-buttons {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn, .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0 !important;
    }
    
    .floating-card {
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .hero-features {
        margin-top: 2rem !important;
    }
    
    .hero-features .row {
        text-align: center;
    }
    
    .hero-functions-grid {
        margin-bottom: 1.5rem;
    }
    
    .features-section {
        padding-top: 3rem !important;
    }
    
    .cta-title {
        font-size: 2.2rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .cta-badge {
        text-align: center;
    }
    
    .cta-content-left {
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .cta-additional-info {
        text-align: center;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .feature-item-mini {
        padding: 0.8rem;
    }
    
    .feature-item-mini span {
        font-size: 0.8rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .info-block {
        padding: 1.2rem;
    }
    
    .info-title {
        font-size: 1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .user-type {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin: 1.2rem 0;
    }
    
    .hero-features .feature-item {
        justify-content: center;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .badge-modern {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .cta-badge {
        text-align: center;
    }
    
    .cta-content-left {
        text-align: center;
    }
    
    .benefit-title {
        font-size: 0.9rem;
    }
    
    .benefit-desc {
        font-size: 0.8rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-benefits {
        margin-top: 1.5rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        padding: 0.8rem;
        border-radius: 12px;
        justify-content: center;
    }
    
    .cta-additional-info {
        text-align: center;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Для самых маленьких экранов */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 12px;
        padding-bottom: 1rem;
    }
    
    .display-4 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 1rem 0;
    }
    
    .hero-btn, .hero-btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .cta-badge {
        text-align: center;
    }
    
    .cta-content-left {
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .cta-additional-info {
        text-align: center;
    }
    
    .hero-features .feature-item {
        font-size: 0.85rem;
    }
    
    .function-card {
        padding: 0.8rem;
    }
    
    .function-card .function-text {
        font-size: 0.75rem;
    }
    
    .function-card .function-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .floating-card {
        margin-top: 2rem;
    }
    
    .floating-card .card-body {
        padding: 1.2rem;
    }
    
    .hero-badge .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Упрощение эффектов для слабых устройств */
    .function-card::before,
    .feature-card::before,
    .feature-icon::after,
    .cta-card::before {
        display: none;
    }
    
    .hero-btn::before,
    .btn-cta-primary::before {
        display: none;
    }
    
    .feature-card:hover,
    .function-card:hover,
    .benefit-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .function-card:hover .function-icon,
    .feature-card:hover .feature-icon,
    .benefit-item:hover .benefit-icon {
        transform: none;
    }
}