/* Что вы получаете */
.get-section {
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-title span {
    color: #1a56db;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

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

.get-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.25s ease;
}

.get-item:hover {
    border-color: #e0e7ff;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.08);
    transform: translateY(-2px);
}

.get-num {
    min-width: 36px;
    height: 36px;
    background: #1a56db;
    color: #fff;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.get-item:hover .get-num {
    transform: scale(1.05);
}

.get-text {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.55;
}

/* Анимации AOS */
.aos {
    transition: all 0.6s ease;
}

.aos-delay-1 {
    transition-delay: 0.1s;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .get-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 16px;
    }
    
    .get-item {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .get-item {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .get-num {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .get-text {
        font-size: 13px;
    }
}